home *** CD-ROM | disk | FTP | other *** search
- //: C02:Numconv.cpp
- // From Thinking in C++, 2nd Edition
- // Available at http://www.BruceEckel.com
- // (c) Bruce Eckel 1999
- // Copyright notice in Copyright.txt
- // Converts decimal to octal and hex
- #include <iostream>
- using namespace std;
-
- int main() {
- int number;
- cout << "Enter a decimal number: ";
- cin >> number;
- cout << "value in octal = 0" << oct << number << endl;
- cout << "value in hex = 0x" << hex << number << endl;
- } ///:~
-